# | CONST BEVEL_Dummy=$85016000 |
|
---|
1 | BEVEL_Style=(BEVEL_Dummy+1) | |
2 | BEVEL_Label=(BEVEL_Dummy+3) | |
3 | BEVEL_LabelImage=(BEVEL_Dummy+4) | |
4 | BEVEL_LabelPlace=(BEVEL_Dummy+5) | |
5 | BEVEL_InnerTop=(BEVEL_Dummy+6) | |
6 | BEVEL_InnerLeft=(BEVEL_Dummy+7) | |
7 | BEVEL_InnerWidth=(BEVEL_Dummy+8) | |
8 | BEVEL_InnerHeight=(BEVEL_Dummy+9) | |
9 | BEVEL_HorizSize=(BEVEL_Dummy+10) | |
10 | BEVEL_HorzSize=BEVEL_HorizSize | |
11 | BEVEL_VertSize=(BEVEL_Dummy+11) | |
12 | BEVEL_FillPen=(BEVEL_Dummy+12) | |
13 | BEVEL_FillPattern=(BEVEL_Dummy+13) | |
14 | BEVEL_TextPen=(BEVEL_Dummy+14) | |
15 | BEVEL_Transparent=(BEVEL_Dummy+15) | |
16 | BEVEL_SoftStyle=(BEVEL_Dummy+16) | |
17 | BEVEL_ColorMap=(BEVEL_Dummy+17) | |
18 | BEVEL_ColourMap=BEVEL_ColorMap | |
19 | BEVEL_Flags=(BEVEL_Dummy+18) | |
20 | BVS_THIN=0 | /* Thin (usually 1 pixel) bevel. */ |
21 | BVS_BUTTON=1 | /* Standard button bevel. */ |
22 | BVS_GROUP=2 | /* Group box bevel. */ |
23 | BVS_FIELD=3 | /* String/integer/text field bevel. */ |
24 | BVS_NONE=4 | /* No not render any bevel. */ |
25 | BVS_DROPBOX=5 | /* Drop box area. */ |
26 | /* |
27 | * You may think it is very stupid to name the vertical bar BVS_SBAR_HORIZ |
28 | * and the horizontal bar BVS_SBAR_VERT. The reason for this is: |
29 | * The vertical bar is mostly used as a seperator in horizontal groups and the |
30 | * horizontal bar is used as a seperator in vertical groups. |
31 | * |
32 | * Another explanation: It was simply a mistake when defining the names the |
33 | * first time. |
34 | */ |
35 | BVS_SBAR_HORIZ=6 | /* Vertical bar. */ |
36 | BVS_SBAR_VERT=7 | /* Horizontal bar. */ |
37 | BVS_BOX=8 | /* Typically | thin black border. */ |
38 | BVS_STANDARD=11 | /* Same as BVS_BUTTON but will not support XEN */ |
39 | BVS_SBAR_HORZ=BVS_SBAR_HORIZ | /* OBSOLETE SPELLING */ |
40 | /* The following bevel types are not implemented yet |
41 | */ |
42 | BVS_FOCUS=9 | /* Typically | the border for drag&drop target. */ |
43 | BVS_RADIOBUTTON=10 | /* (not implemented) radiobutton bevel. */ |
44 | /* BEVEL_Flags - CURRENTLY PRIVATE!! |
45 | */ |
46 | BFLG_XENFILL=1 | |
47 | BFLG_TRANS=2 | |
48 | /* Bevel Box Locations for BEVEL_LabelPlace. Typically used to label a group |
49 | * box | or to be utilized via a button or status gadgets. |
50 | */ |
51 | BVJ_TOP_CENTER=0 | |
52 | BVJ_TOP_LEFT=1 | |
53 | BVJ_TOP_RIGHT=2 | |
54 | BVJ_IN_CENTER=3 | |
55 | BVJ_IN_LEFT=4 | |
56 | BVJ_IN_RIGHT=5 | |
57 | BVJ_BOT_CENTER=6 | |
58 | BVJ_BOT_LEFT=7 | |
59 | BVJ_BOT_RIGHT=8
|